.minimap-props-control {
    display: flex;
    flex-direction: column;

    width: 260px;
    padding: 16px 16px 8px;

    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(95, 105, 131, 0.1), 0 4px 24px 0 rgba(95, 105, 131, 0.04);
}

.segment-control {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 16px;
    padding: 2px;

    border-radius: 8px;
    background: rgba(92, 94, 102, 0.06);
    gap: 5px;
}

.segment-control button {
    width: 100%;
    padding: 6px 8px;

    font-size: 14px;
    font-style: normal;
    line-height: 16px;
    cursor: pointer;
    text-align: center;

    color: #7b7d85;
    border: none;
    border-radius: 8px;
    background-color: transparent;
}

.segment-control button.active {
    color: #050d33;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(95, 105, 131, 0.1), 0 4px 24px 0 rgba(95, 105, 131, 0.04);
}

.toggle-control {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;

    padding: 0 2px;
}

.toggle-control .text {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 2px;

    font-style: normal;
    line-height: 16px;
}

.toggle-control .text .title {
    font-size: 14px;

    color: #050d33;
}

.toggle-control .text .description {
    font-size: 12px;

    color: #7b7d85;
}

.toggle-control .toggle {
    position: relative;

    display: inline-block;

    width: 26px;
    height: 16px;
}

.toggle-control .toggle input {
    display: none;
}

.toggle-control .slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    cursor: pointer;

    border-radius: 34px;
    background-color: #808080;

    transition: 0.4s;
}

.toggle-control .slider::before {
    position: absolute;
    bottom: 2px;
    left: 2px;

    width: 12px;
    height: 12px;

    content: '';

    border-radius: 50%;
    background-color: #fff;

    transition: 0.4s;
}

.toggle-control .toggle input:checked + .slider {
    background-color: var(--slider-active);
}

.toggle-control .toggle input:checked + .slider::before {
    transform: translateX(10px);
}

.divider {
    width: 100%;
    height: 1px;
    margin: 12px 0;

    background: rgba(92, 94, 102, 0.14);
}
